home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libbonobo2-0.postinst < prev    next >
Text File  |  2009-10-02  |  377b  |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.   configure)
  7.     kill -s HUP `pidof bonobo-activation-server` 2>/dev/null || true
  8.   ;;
  9.   abort-upgrade|abort-remove|abort-deconfigure)
  10.   ;;
  11.   *)
  12.     echo "postinst called with unknown argument \`$1'" >&2
  13.     exit 1
  14.   ;;
  15. esac
  16.  
  17. # Automatically added by dh_makeshlibs
  18. if [ "$1" = "configure" ]; then
  19.     ldconfig
  20. fi
  21. # End automatically added section
  22.  
  23.